home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 2: Applications
/
Linux Cubed Series 2 - Applications.iso
/
math
/
graphs
/
graphed-.1
/
graphed-
/
usr
/
local
/
graphed
/
include
/
sgraph
/
random.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-10
|
177 b
|
12 lines
#ifndef __SGRAPH_RANDOM_H__
#define __SGRAPH_RANDOM_H__
#include <stdlib.h>
#ifndef _BSD_SOURCE
#define random() (long)rand()
#define srandom(seed) srand(seed)
#endif
#endif